home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the 3D Game Programming Gurus / gurus.iso / DirectX / dx9sdkcp.exe / SDK (C++) / Bin / DXUtils / Visual Studio 6.0 Wizards / Source Code / Cstm1Dlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-11-12  |  1.7 KB  |  71 lines

  1. #if !defined(AFX_CSTM1DLG_H__3546CC7D_D0EA_4E14_BBED_B42A4412D859__INCLUDED_)
  2. #define AFX_CSTM1DLG_H__3546CC7D_D0EA_4E14_BBED_B42A4412D859__INCLUDED_
  3.  
  4. // cstm1dlg.h : header file
  5. //
  6. #include "chooser.h"
  7.  
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CCustom1Dlg dialog
  10.  
  11. class CCustom1Dlg : public CAppWizStepDlg
  12. {
  13. // Construction
  14. public:
  15.     CCustom1Dlg( CDialogChooser* pChooser );
  16.     virtual BOOL OnDismiss();
  17.  
  18.     CDialogChooser* m_pChooser;
  19.  
  20.     BOOL    m_bWindow;
  21.     BOOL    m_bMFCDialog;
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CCustom1Dlg)
  25.     enum { IDD = IDD_CUSTOM1 };
  26.     CStatic    m_Preview;
  27.     CStatic    m_Background;
  28.     BOOL    m_bDirectInput;
  29.     BOOL    m_bDirectMusic;
  30.     BOOL    m_bDirectPlay;
  31.     BOOL    m_bDirectSound;
  32.     BOOL    m_bDirect3D;
  33.     BOOL    m_bRegAccess;
  34.     BOOL    m_bIncludeMenu;
  35.     //}}AFX_DATA
  36.  
  37.     int m_nSteps;
  38.  
  39. // Overrides
  40.     // ClassWizard generated virtual function overrides
  41.     //{{AFX_VIRTUAL(CCustom1Dlg)
  42.     protected:
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. protected:
  48.     void UpdateInfo();
  49.  
  50.     // Generated message map functions
  51.     //{{AFX_MSG(CCustom1Dlg)
  52.     virtual BOOL OnInitDialog();
  53.     afx_msg void OnDirect3d();
  54.     afx_msg void OnDplay();
  55.     afx_msg void OnMfcdialog();
  56.     afx_msg void OnWindow();
  57.     afx_msg void OnDinput();
  58.     afx_msg void OnDmusic();
  59.     afx_msg void OnDsound();
  60.     afx_msg void OnReginclude();
  61.     afx_msg void OnAddmenus();
  62.     //}}AFX_MSG
  63.     DECLARE_MESSAGE_MAP()
  64. };
  65.  
  66.  
  67. //{{AFX_INSERT_LOCATION}}
  68. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  69.  
  70. #endif // !defined(AFX_CSTM1DLG_H__3546CC7D_D0EA_4E14_BBED_B42A4412D859__INCLUDED_)
  71.